1bashThis demonstrates the use of the shift command to manipulate positional parameters in Bash.echo "First argument: $1" shift echo "First argument after shift: $1"bash internaldata manipulationspositional argumentsshift command